home *** CD-ROM | disk | FTP | other *** search
/ Everything For A Hacker / 19990506-[HACK].iso / HEXEDIT / CROSSASM / PS65A12.ARJ / A65.DOC < prev    next >
Text File  |  1986-11-30  |  33KB  |  985 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.                              PseudoSam 65 Assembler Manual V1.0.00
  12.                              Copyright(c) 1986 PseudoCode
  13.  
  14.  
  15.  
  16.  
  17.  
  18. Disclaimer:
  19.  
  20.             PseudoSam 65 is distributed as is, with no guarantee that it
  21.             will work correctly in all situations.  In no event will the
  22.             Author be liable for any damages, including lost profits,
  23.             lost savings or other incidental or consequential damages
  24.             arising out of the use of or inability to use these
  25.             programs, even if the Author has been advised of the
  26.             possibility of such damages, or for any claim by any other
  27.             party.
  28.  
  29.             It is the users reponsibility to back up all important files!
  30.  
  31.             See copyright information in appendix B
  32.  
  33.  
  34.  
  35.  
  36.  
  37.                          Table of Contents
  38.  
  39. Chapter 1  PseudoSam 65 assembler.
  40.  
  41. Chapter 2  Running the assembler program.
  42.  
  43. Chapter 3  Assembler statement syntax.
  44.  
  45. Chapter 4  Data types.
  46.  
  47. Chapter 5  Expressions.
  48.  
  49. Chapter 6  Assembler Directives.
  50.   (also known as assembler pseudo-opcodes, or pseudo-ops)
  51.  
  52. Appendix A      ASCII character set.
  53.  
  54. Appendix B      Copyright and registration information.
  55.  
  56. Appendix C      Description of Files.
  57.  
  58. Appendix D      Bug Reporting Procedure.
  59.  
  60. Appendix E      Using PseudoSam 65 on "Compatible" Systems.
  61.  
  62.  
  63.  
  64. Chapter 1 PseudoSam 65 assembler.
  65.  
  66.      All PseudoSam(Pseudo brand Symbolic AsseMbler) assemblers conform to
  67.      a common syntax based on the UNIX system V assembler syntax. By
  68.      conforming to this Pseudo standard, conflicts with the manufacturers
  69.      syntax are created.  Below is a brief and incomplete list of those
  70.      conflicts.
  71.  
  72.          PseudoSam format
  73.  
  74.  .dw  h'00ff    ;is stored in memory msb first(00ff), use .drw to
  75.                 ;create a word lsb first(ff00)(6502 normal).
  76.  
  77.  .equ <identifier> , <expression>
  78.  
  79.  .set <identifier> , <expression>
  80.  
  81.   No Macro capability at this time
  82.  
  83.   Labels may start anywhere, but must
  84.   be followed immediately by a colon.
  85.  
  86.  
  87.  
  88. * The PseudoSam name of an assembler directive can be cchanged by the
  89.   .opdef directive.
  90.  
  91.   example
  92.  
  93.    .opdef  eject,.eject      ;defines eject to be synonymous with .eject
  94.    .opdef  fcc,.db           ;fcc will now form constant characters as it
  95.                              ;should.
  96.  
  97. *  A file syn.asm is distributed with the assembler with some useful
  98.    redefinitions.
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109. Unix system V is a trademark of AT & T.
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117. Chapter 2  Running the assembler program
  118.  
  119. 1.  Command line switch setting and source file specification.
  120.  
  121.      Assuming the user has an assembly language source file called foo.asm
  122.      type the following command:
  123.  
  124. a65 foo
  125.  
  126.      The assembler will assemble the program foo.asm using the default
  127.      assembler switch settings. the following files will be generated
  128.      by the assembler:
  129.  
  130.      foo.lst   ;assembled listing shown the code conversion and
  131.                ; any errors that where discover by the assembler.
  132.  
  133.      foo.obj   ;assembled object code in Motorola Hex format.
  134.  
  135. **  for a list of switch setting see the .command assembler directive
  136.     description in chapter 6.
  137.  
  138. *** The assembler uses the following temporary file names.
  139.  
  140.     z0z0z0z0.tmp
  141.     z1z1z1z1.tmp
  142.  
  143.     ANY files with these names will be DESTROYED by the
  144.     by the assembler.
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152. Chapter 3  Assembler statement syntax
  153.  
  154. 1. Assembler Statements
  155.  
  156.      Assembler statements contain from zero to 4 fields as shown in
  157.      following.
  158.  
  159. <label> <opcode> <expressions> <comment>
  160.  
  161.      All fields are optional, but they must be in this order.
  162.  
  163. A.   Labels (<label>) are symbolic names that are assigned the starting
  164.      address of any code generated by the opcode and or expressions
  165.      of the line containing the label declaration.(see section 2).
  166.  
  167. B.   Operation codes(<opcode>) tell the assembler what machine instruction
  168.      to generate, or what assembler control function to perform.
  169.      The operation code also tells the assembler what expressions are
  170.      required to complete the machine instruction or assembler directive.
  171.      (see chapter 6).
  172.  
  173. C.   Expression requirements are set by the opcode(see the microprocessor
  174.      manufacturers reference manual or the assembler directives chapter
  175.      for individual opcode requirements).(see chapter 5).
  176.  
  177. D.   Comments are notes written by the programmer to explain what the
  178.      program is trying to accomplish. Comments generate no code.
  179.      (see section 3).
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187. 2.  Labels
  188.  
  189.      Labels can be unlimited in length, but only the first eight characters
  190.      are used to distinguish between them.  They must conform to the
  191.      following syntax.
  192.  
  193.      <label>  -> <identifier>':'
  194.  
  195.      <identifier> -> <alphabetic character> <identifier character string>
  196.  
  197.      <alphabetic character> -> character in the set ['A'..'Z', 'a'..'z', '.']
  198.  
  199.      <identifier character string> -> any sequence of characters from the
  200.                                       set ['A'..'Z','a'..'z', '.', '0'..'9']
  201.  
  202. example
  203. abc:                  ;label referred to as abc
  204. a c:                  ;not a valid label
  205.          foo:         ;label referred to as foo
  206. .123:                 ;label referred to as .123
  207.  
  208. * Case makes NO difference!
  209.  
  210. d:      ;is the same as
  211. D:
  212.  
  213.  
  214. 3.  Comments
  215.      Comments must start with a semi-colon ; and are terminated
  216.      by an end of line or file( <lf>(^J) or <sub>(^Z) ). An end
  217.      of line is inserted by typing the enter or return key by
  218.      most text editors.
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226. Chapter 4     Data types
  227.  
  228. 1.  Integers
  229.  
  230.     Integer constants can be specified in any of the following forms:
  231.  
  232. A.  Binary
  233.  
  234.     b'bb             ;bb=string of binary digits
  235.     B'bb
  236.  
  237. B.  Decimal
  238.  
  239.     ndd
  240.     d'dd             ;n=nozero decimal digit
  241.     D'dd             ;dd=string of decimal digits
  242.  
  243. C.  Octal
  244.  
  245.     0qq              ;qq=string of octal digits
  246.     o'qq
  247.     O'qq
  248.     q'qq
  249.     Q'qq
  250.  
  251. D.  Hexidecimal
  252.  
  253.     0x'hh            ;hh=string of hexidecimal digits
  254.     0X'hh
  255.     h'hh
  256.     H'hh
  257.     x'hh
  258.     X'hh
  259.  
  260.  
  261. Examples:
  262.  
  263.     077        ;octal number 77 = decimal 63
  264.     b'0101     ;binary number 101 = decimal 5
  265.     77         ;decimal number 77 = octal 115
  266.     h'ff       ;hexidecimal ff = decimal 255
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273. 2.  Strings:
  274.  
  275.     Strings consist of a beginning quote " followed by any reasonable number
  276.     of characters followed by an ending quote ". Control characters and double
  277.     quotes " and backslash \ may not be used in strings directly.  These
  278.     special characters are included by using a special escape sequence which
  279.     the assembler translates into the appropriate ASCII code.
  280.  
  281. Note: Strings may not be used in expressions!
  282.       Although character constants may(see below).
  283.  
  284. Escape sequences
  285.   "\"" string containing "
  286.   "\\" string containing \
  287.   "\'" string containing '
  288.   "\0" string containing null
  289.   "\n" string containing linefeed
  290.   "\r" string containing carriage return
  291.   "\f" string containing formfeed
  292.   "\t" string containing horizontal tab
  293.   "\nnn" string containing the ASCII character who's code is o'nnn
  294.          (nnn are octal digits).
  295.   * see appendix A for ASCII codes.
  296.  
  297. 3.  Character Constants:
  298.  
  299.     Character constants consist of  a single quote ' followed by
  300.     a character or an escape sequence(see above) followed by a
  301.     single quote '.
  302.  
  303. example:
  304.    'A' = ASCII character value for the letter A = 65 (decimal);
  305.    '\''= ASCII character value for the character ' = 39 (decimal).
  306.  
  307. Character constants are treated as integers by the assembler and
  308. are valid where ever an integer value is valid.
  309.  
  310. example:
  311.    'A' + 1 = 66
  312.  
  313.   * see appendix A for ASCII codes.
  314.  
  315. 4.  Symbolic values
  316.  
  317.     Symbolic values are generally labels, but may be any identifier
  318.     assigned an integer value(using .set or .equ pseudo-ops).
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325. Chapter 5  Expressions
  326.  
  327.      All expressions evaluate to integer values modulo 65536(2^16) and are
  328.      written in infix notation(the way you normally write them).  Operators
  329.      provided are grouped below in order of precedence.
  330.  
  331. 1. (unary)
  332. ~           logical bit wise complement(not) of its operand(one's complement).
  333. -           arithemetic complement, or negation(two's complement).
  334.  
  335. 2. (binary)
  336. *           integer multiply (two's complement).
  337. /           integer divide   (two's complement).
  338. %           modulus          (result is always positive)
  339. >>          logical shift right (left operand shifted right operand times).
  340. <<          logical shift left (left operand shifted right operand times).
  341. ~           equivalent to  A or ( ~B ).
  342.  
  343. 3. (binary)
  344. |           logical bitwise or(inclusive-or) of two operands.
  345. ^           logical bitwise exclusive-or of two operands.
  346. &           logical bitwise and of two operands.
  347.  
  348. 4. (binary)
  349. +           addition (two's complement).
  350. -           subtraction (two's complement).
  351.  
  352.      Since this version does not generate relocatable code there exists only
  353.      one "type" of operand that can be in an expression.  So anything goes
  354.      except divide by 0(1 will be substituted ).
  355.  
  356. examples:
  357.     -1 = h'ffff  (two's complement notation).
  358.     -1 >> 8 = h'00ff
  359.     -1 << 8 = h'ff00
  360.     3 / 2 = 1
  361.     6 / 2 = 3
  362.     5 / 0 = 5
  363.     -2 / 1 = -2
  364.     -3 /-2 = 1
  365.     2 * -3 = -6
  366.     b'00 & b'11 = 0
  367.     b'11 & b'10 = 2
  368.     2 * b'01 & b'10 = 2
  369.     b'01 ^ b'11 = 2
  370.     b'01 | b'11 = 3
  371.  
  372. Notice that spaces are ignored in expressions.
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381. Chapter 6  Assembler Directives
  382.   (also known as assembler Pseudo-opcodes)
  383.  
  384.      The assembler recognizes the following directives:
  385.  
  386.       directive  section    description
  387.  
  388.       .command    1   ;set assembly options(similar to command line options).
  389.  
  390.       .org        2   ;set program origin.
  391.  
  392.       .equ        3   ;equate an identifier to an expression(permanent
  393.                       ; assignment).
  394.  
  395.       .set        4   ;equate and identifier to an expression(temporary
  396.                       ; assignment).
  397.  
  398.       .rs         5   ;reserve storage(memory) space.
  399.  
  400.       .db         6   ;define byte.
  401.  
  402.       .dw         7   ;define word(16 bit).
  403.  
  404.       .drw        8   ;define reversed word(16 bit).
  405.  
  406.       .eject      9   ;form feed in listing
  407.  
  408.       .page      10   ;align location counter on 256 byte memory
  409.                       ; page boundary.
  410.  
  411.       .end       11   ;end of program
  412.  
  413.       .opdef     12   ;equate an identifier with another identifier.
  414.  
  415.       .segment   13   ;define a memory segment.
  416.  
  417.       <segment name>
  418.                  14   ;select segment <segment name> as current segment.
  419.  
  420.       .null      15   ;this is a comment statement.
  421.  
  422.  
  423.  
  424.  
  425.  
  426. 1. .command    <optionlist>   ;allows the programmer to set option switches
  427.                               ;in the same manner as on the command line.
  428.                               ;(the command line is the line typed to run
  429.                               ; this program).
  430.  
  431. <optionlist> -> <option> ' ' <optionlist>
  432. <optionlist> ->
  433.  
  434. <option> -> '-'<available option>
  435. <option> -> '+'<available option>
  436.  
  437. <available option> -> 'a'<decimal number> ;Hex hode format.
  438.                                           ;1 => Intel Hex.
  439.                                           ;2 => Motorola 19 Hex.
  440.  
  441. <available option> -> 'w'<decimal number> ;page width in columns(characters).
  442.                                           ;(-,+ are ignored but one must be
  443.                                           ; there).
  444.  
  445. <available option> -> 'h'<decimal number> ;page height in lines.
  446.                                           ;(-,+ are ignored but one must be
  447.                                           ; there).
  448.  
  449. <available option> -> 'l'                 ;listing on(+) or off(-)
  450.                                           ;if set on command line it overrides
  451.                                           ;all listing controls in program.
  452.  
  453. <available option> -> 'm'<decimal number> ;Machine level.
  454.                                           ;1 => 6502.
  455.  
  456. <available option> -> 's'                 ;symbol listing on(+) or off(-).
  457.  
  458. <available option> -> 'o'                 ;selects single object module
  459.                                           ;file only(+), or multiple object
  460.                                           ;module files(-)(one for each
  461.                                           ;defined segment in the program).
  462.                                           ;ONLY active on command line!
  463.  
  464. <available option> -> 't'<drive>          ;specifies which drive to create
  465.                                           ;all temporary files on(-,+ are
  466.                                           ; ignored but one must be there).
  467.                                           ;ONLY active on command line!
  468.  
  469. <available option> -> 'p'<drive>          ;specifies which drive to create
  470.                                           ;the listing file on(-,+ are
  471.                                           ; ignored but one must be there).
  472.                                           ;ONLY active on command line!
  473.  
  474. <drive> -> <drive name>':'                ;e.g.  a:  b:  c:  d:
  475.  
  476.                            ;MS-DOS
  477. <drive name> -> 'a'        ;drive a --usually a floppy disk
  478. <drive name> -> 'b'        ;drive b --usually a second floppy disk
  479. <drive name> -> 'c'        ;drive c --usually a hard disk, but may
  480.                                       be a ram disk.
  481. <drive name> -> 'd'        ;drive d --usually a ram disk, but may
  482.                                       be a hard disk.
  483.  
  484. ** The default options are: -a2 -m1 -w132 -h66 +l +s +o
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492. 2. .org   <integer expression>    ;sets the assembler location counter
  493.                                   ;to the value of expression.
  494.                                   ;The expression MUST be evaluatable
  495.                                   ;on the first pass. NO FORWARD
  496.                                   ;REFERENCES!
  497.  
  498. 3. .equ  <identifier> ',' <integer expression>
  499.                                   ;gives identifier the value of the
  500.                                   ;integer expression.
  501.                                   ;<identifier> canNOT be redefined!
  502.                                   ;also forward references are allowed
  503.                                   ;as long as they are resolved by the
  504.                                   ;second pass.
  505.  
  506. 4. .set  <identifier> ',' <integer expression>
  507.                                   ;gives identifier the value of the
  508.                                   ;integer expression.
  509.                                   ;<identifier> CAN be redefined later
  510.                                   ; in the program!
  511.                                   ;also forward references are allowed
  512.                                   ;as long as they are resolved by the
  513.                                   ;second pass.
  514.  
  515. 5. .rs  <integer expression>      ;increments the location counter
  516.                                   ;by the value of <integer expresson>
  517.                                   ;effectively reserving that many bytes
  518.                                   ;of memory.
  519.  
  520. 6. .db  <expression-string list>
  521.  
  522. <expression-string list> -> <expression>','<expression-string list>
  523. <expression-string list> -> <string>','<expression-string list>
  524. <expression-string list> -> <expression>
  525. <expression-string list> -> <string>
  526.  
  527.                                   ;creates a byte in the machine code
  528.                                   ;for each <expression> in the list
  529.                                   ;and a byte for each ascii character
  530.                                   ;in the a string.
  531. 7. .dw  <expression list>
  532.  
  533. <expression list> -> <expression>','<expression list>
  534. <expression list> -> <expression>
  535.  
  536.                                   ;creates a word(16 bit) in the machine code
  537.                                   ;for each <expression> in the list.
  538.                                   ;MOST significant byte is stored at LOWER
  539.                                   ;address.
  540.  
  541.  
  542.  
  543.  
  544.  
  545.  
  546. 8. .drw  <expression list>
  547.  
  548. <expression list> -> <expression>','<expression list>
  549. <expression list> -> <expression>
  550.  
  551.                                   ;creates a word(16 bit) in the machine code
  552.                                   ;for each <expression> in the list.
  553.                                   ;LEAST significant byte is stored at LOWER
  554.                                   ;address.
  555.  
  556. 9. .eject                         ;causes a form-feed character to be
  557.                                   ;inserted in listing.(new listing page)
  558.  
  559. 10. .page                         ;increments location counter to next
  560.                                   ;256 byte page boundary.
  561.  
  562. 11. .end <integer expression>     ;signals the end of the source program.
  563.                                   ;the optional expression, if supplied,
  564.                                   ;specifies the start address of the
  565.                                   ;program, and is included in the
  566.                                   ;Motorola Hex object module output
  567.                                   ;of the active segment when the .end
  568.                                   ;was encountered.
  569.  
  570.  
  571. 12. .opdef  <identifier>,<identifier>
  572.                                   ;assigns the current definition of
  573.                                   ;the second <identifier> to the
  574.                                   ;first <identifier>.
  575.                                   ;useful for renaming opcodes and
  576.                                   ;pseudo-ops.
  577.  
  578. 13. .segment <identifier> ',' <integer expression>
  579.                                   ;defines a memory segment name.
  580.                                   ;used to separate memory allocation
  581.                                   ;and optionally generate seperate
  582.                                   ;object files.(see 'o' assembly
  583.                                   ;directive to activate).
  584.                                   ;(used to seperate RAM, ROM, or
  585.                                   ; ROMS)
  586.                                   ;the optional <integer expression> is
  587.                                   ;added to the location counter to
  588.                                   ;offset the load address supplied
  589.                                   ;in the object module. (does not
  590.                                   ;affect listings addresses!)
  591.                                   ;
  592.                                   ;note: .code is the predefined default
  593.                                   ;segment and cannot be redefined.
  594.  
  595. 14. <segment name>                ;selects the segment <segment name>
  596.                                   ;as the current memory segment.
  597.                                   ;The location old segment location counter
  598.                                   ;is saved and the previous value of the
  599.                                   ;newly selected segments location counter
  600.                                   ;is used(0 if not previously used).
  601.  
  602. 15.  .null                        ;directs the assembler to treat this
  603.                                   ;statement as a comment.  Useful to
  604.                                   ;nullify opcodes when used in conjunction
  605.                                   ;with the .opdef pseudo-op.
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613. Appendix   A      ASCII character set
  614.  
  615.  
  616.  
  617. dec oct hex char     dec oct hex char  dec oct hex char  dec oct hex char
  618.  
  619.   0 000  00 ^@ null   32 040  20 sp     64 100  40 @      96 140  60 `
  620.   1 001  01 ^A soh    33 041  21 !      65 101  41 A      97 141  61 a
  621.   2 002  02 ^B stx    34 042  22 "      66 102  42 B      98 142  62 b
  622.   3 003  03 ^C etx    35 043  23 #      67 103  43 C      99 143  63 c
  623.   4 004  04 ^D eot    36 044  24 $      68 104  44 D     100 144  64 d
  624.   5 005  05 ^E enq    37 045  25 %      69 105  45 E     101 145  65 e
  625.   6 006  06 ^F ack    38 046  26 &      70 106  46 F     102 146  66 f
  626.   7 007  07 ^G bel    39 047  27 '      71 107  47 G     103 147  67 g
  627.   8 010  08 ^H bs     40 050  28 (      72 110  48 H     104 150  68 h
  628.   9 011  09 ^I ht     41 051  29 )      73 111  49 I     105 151  69 i
  629.  10 012  0A ^J lf     42 052  2A *      74 112  4A J     106 152  6A j
  630.  11 013  0B ^K vt     43 053  2B +      75 113  4B K     107 153  6B k
  631.  12 014  0C ^L ff     44 054  2C ,      76 114  4C L     108 154  6C l
  632.  13 015  0D ^M cr     45 055  2D -      77 115  4D M     109 155  6D m
  633.  14 016  0E ^N so     46 056  2E .      78 116  4E N     110 156  6E n
  634.  15 017  0F ^O si     47 057  2F /      79 117  4F O     111 157  6F o
  635.  16 020  10 ^P dle    48 060  30 0      80 120  50 P     112 160  70 p
  636.  17 021  11 ^Q dc1    49 061  31 1      81 121  51 Q     113 161  71 q
  637.  18 022  12 ^R dc2    50 062  32 2      82 122  52 R     114 162  72 r
  638.  19 023  13 ^S dc3    51 063  33 3      83 123  53 S     115 163  73 s
  639.  20 024  14 ^T dc4    52 064  34 4      84 124  54 T     116 164  74 t
  640.  21 025  15 ^U nak    53 065  35 5      85 125  55 U     117 165  75 u
  641.  22 026  16 ^V syn    54 066  36 6      86 126  56 V     118 166  76 v
  642.  23 027  17 ^W etb    55 067  37 7      87 127  57 W     119 167  77 w
  643.  24 030  18 ^X can    56 070  38 8      88 130  58 X     120 170  78 x
  644.  25 031  19 ^Y em     57 071  39 9      89 131  59 Y     121 171  79 y
  645.  26 032  1A ^Z sub    58 072  3A :      90 132  5A Z     122 172  7A z
  646.  27 033  1B ^[ esc    59 073  3B ;      91 133  5B [     123 173  7B {
  647.  28 034  1C ^\ fs     60 074  3C <      92 134  5C \     124 174  7C |
  648.  29 035  1D ^] gs     61 075  3D =      93 135  5D ]     125 175  7D }
  649.  30 036  1E ^^ rs     62 076  3E >      94 136  5E ^     126 176  7E ~
  650.  31 037  1F ^_ us     63 077  3F ?      95 137  5F _     127 176  7F del
  651.  
  652.  ^ denotes control key simultaneous with character key.
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660. Appendix B       Copyright Information:
  661.  
  662.  
  663. Disclaimer:
  664.  
  665.             PseudoSam 65 is distributed as is, with no guarantee that it
  666.             will work correctly in all situations.  In no event will the
  667.             Author be liable for any damages, including lost profits,
  668.             lost savings or other incidental or consequential damages
  669.             arising out of the use of or inability to use these
  670.             programs, even if the Author has been advised of the
  671.             possibility of such damages, or for any claim by any other
  672.             party.
  673.  
  674. Copyright Information:
  675.  
  676.             The entire PseudoSam 65 distribution package, consisting of
  677.             the main program, documentation files, and various data and
  678.             utility files, is copyright (c) 1986, by PseudoCode.
  679.  
  680.             The author reserves the exclusive right to distribute this
  681.             package, or any part thereof, for profit.
  682.  
  683.             The name "PseudoSam (tm)", applied to an assembler
  684.             program, is a trade mark of the PseudoCode company.
  685.  
  686.             PseudoSam version 1.x.xx and various subsidiary files may be
  687.             copied freely by individuals for evaluation purposes.  It
  688.             is expected that those who find the package useful will
  689.             make a contribution directly to the author of the program.
  690.             ONLY UNMODIFIED VERSIONS DISPLAYING THE AUTHORS COPYRIGHT
  691.             MAY BE COPIED.
  692.  
  693.             User groups and clubs are authorized to distribute PseudoSam
  694.             software under the following conditions:
  695.  
  696.             1.  No charge is made for the software or documentation.  A
  697.                 nominal distribution fee may be charged, provided that
  698.                 it is no more than $10 total.
  699.  
  700.             2.  Recipients are to be informed of the user-supported
  701.                 software concept, and encouraged to support it with
  702.                 their donations.
  703.  
  704.             3.  The program and documentation are not modified in ANY
  705.                 way, and are distributed together.
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.             Interested manufacturers are invited to contact PseudoCode
  713.             to discuss licensing PseudoSam 65 for bundling with MS-DOS
  714.             based development systems.
  715.  
  716.             Distribution of PseudoSam 65 outside the United States is through
  717.             licensed distributors, on a royalty basis.  Interested
  718.             distributors are invited to contact PseudoCode.
  719.  
  720.  
  721.  
  722. Educational Use:
  723.  
  724.             Educational institutions are free to use this software
  725.             in their classes and are encouraged to distribute this
  726.             package to their students, however inorder to receive
  727.             periodic updates and technical assistance the appropriate
  728.             department must remit the license fee.  Also a staff
  729.             member must be assigned to clear all trouble reports before
  730.             forwarding them to PseudoCode.
  731.  
  732.  
  733.  
  734.  
  735.  
  736.  
  737.  
  738.  
  739.         If you use this software, please help support it.  Your
  740.         support can take three forms:
  741.  
  742.         1. Become a registered user.  The suggested payment for
  743.            registration is $30($100 for complete family of assemblers).
  744.  
  745.         2. Suggestions, comments, and bug reports.
  746.  
  747.         3. Spread the word.  Make copies for friends.  Write the editor
  748.            of your favorite computer magazine.  Astronomical advertising
  749.            costs are one big reason that commercial software is so over-
  750.            priced.  To continue offering PseudoSam 65 this way, we need
  751.            your help in letting other people know about PseudoSam 65.
  752.  
  753.         Those who make the $30 payment to become registered users
  754.         receive the following benefits:(order form on next page)
  755.  
  756.         1. One year of updates including any upgrades. This includes
  757.            at least on new version release even if it takes more than
  758.            one year.
  759.  
  760.         2. User support by mail.  Support is only available to registered
  761.            users.  The address for help is given below.
  762.  
  763.         3. Notices announcing the release of new products.
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772.  
  773.              Attention:BUGS             PseudoCode
  774.                                         P.O. Box 1423
  775.                                         Newport News, VA     23601
  776.  
  777.  
  778.  
  779.  
  780.  
  781.       ********ORDER FORM********
  782.  
  783.       Please add me to the list of registered PseudoSam 65 users, and send me
  784.       the most recent version. I understand that registration entitles me to
  785.       one year of free updates and new releases, or one free new version
  786.       release, whichever occurs last.
  787.  
  788.       Note that version 1.1.00 requires DOS 2 (or later) and 256K.
  789.  
  790.       Computer Model: ____________________________________
  791.  
  792.       Diskette format:            Total Memory: _______K
  793.                                      (256K required)
  794.          __ doubled sided/DOS 2
  795.  
  796.       Check one:
  797.              ___ I enclose a check for $30
  798.              (PseudoCode pays sales tax for VA orders)
  799.  
  800.       Where did you hear about PseudoSam 65? ________________________________
  801.  
  802.       Name:    _______________________________________________________
  803.  
  804.       Address: _______________________________________________________
  805.  
  806.       City, State, Zip: ______________________________________________
  807.  
  808.       ================================================================
  809.  
  810.            Send order form with check or money order payable to PseudoCode to:
  811.            (Qualified PO's will be billed.)
  812.  
  813.            Attention: Registration         PseudoCode
  814.                                            P.O. Box 1423
  815.                                            Newport News, VA     23601
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822.       ********ORDER FORM********
  823.  
  824.       Please add me to the list of registered users of the complete
  825.       PseudoSam family of cross-assemblers. Send me the most recent
  826.       versions.  I understand that registration entitles me to
  827.       one year of free updates and new releases, or one free new
  828.       version release, whichever occurs last.
  829.  
  830.  
  831.       I note that version 1.1.00 requires DOS 2 (or later) and 256K.
  832.  
  833.       Computer Model: ____________________________________
  834.  
  835.       Diskette format:            Total Memory: _______K
  836.                                      (256K required)
  837.          __ single sided/DOS 2(360k)
  838.  
  839.       Check one:
  840.              ___ I enclose a check or money order for $100
  841.                  (shipping, handling, and Virginia sales tax for VA orders
  842.                   is paid by PseudoCode).
  843.  
  844.       Where did you hear about the PseudoSam family? ________________________
  845.  
  846.       Name:    _______________________________________________________
  847.  
  848.       Address: _______________________________________________________
  849.  
  850.       City, State, Zip: ______________________________________________
  851.  
  852.       ================================================================
  853.  
  854.            Send order form with check or money order payable to PseudoCode to:
  855.            (Qualified PO's will be billed.)
  856.  
  857.            Attention: Registration         PseudoCode
  858.                                            P.O. Box 1423
  859.                                            Newport News, VA     23601
  860.  
  861.  
  862.  
  863.  
  864.  
  865.  
  866.  
  867.  
  868.       The PsuedoSam Family consists of the following cross-assemblers
  869.  
  870.        Name            Designed for         Available*   V1.1.00
  871.  
  872.        PseudoSam 48   ;Intel 8048 family.     Now
  873.        PseudoSam 51   ;Intel 8051 family.     Now
  874.        PsuedoSam 96   ;Intel 8096 family.     Dec 86
  875.        PseudoSam 68   ;Motorola
  876.                       ;6800,01,02,03,08.      Now
  877.        PseudoSam 685  ;Motorola 6805.         Now
  878.        PsuedoSam 689  ;Motorola 6809.         Dec 86
  879.        PseudoSam 65   ;6502.                  Now
  880.        PseudoSam 85   ;Intel 8080,8085.       Now
  881.        PseudoSam 80z  ;Zilog Z80, NSC800.     Dec 86
  882.        PseudoSam 18   ;RCA 1802,1804.         Now
  883.        PseudoSam 32   ;NSC 32000 Family.      Jan 87
  884.        PseudoSam 86   ;Intel 86, 286, 386.    Feb 87
  885.        PseudoSam 68k  ;Motorola 68000 family. Jan 87
  886.  
  887.    * PseudoCode reserves the right to change price and availability
  888.      of any product without notice.
  889.  
  890.  
  891.  
  892.  
  893.  
  894.  
  895.  
  896.  
  897.  
  898. Appendix C: Description of Files
  899.  
  900.       Your PseudoSam 65 distribution disk contains a number of files.  This
  901.       appendix will give a brief statement of the purpose of each of the
  902.       files.
  903.  
  904.       FILE           DESCRIPTION
  905.       ----------------------------------------------------------------
  906.       A65.COM         The PseudoSam 65 program.
  907.       A65.DOC         This document.
  908.       EXAMPLE.ASM     Sample source file.
  909.       MNEMTEST.ASM    Mnemnonics test file.
  910.       SYN.ASM         Useful mnemnonics redefinitions
  911.  
  912.       Occasionally, various other sample source files for PseudoSam 65 will be
  913.       distributed.  These files will have extension ASM, and will be
  914.       accompanied by a corresponding DOC file.
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924. Appendix D: Bug Reporting Procedure.
  925.  
  926.  
  927.       Although each version of PseudoSam 65 is tested extensively prior
  928.       to release, any program is bound to contain a few bugs.  It is
  929.       the intention of PseudoCode to correct any genuine problem that
  930.       is reported.
  931.  
  932.       If you think you have found a bug in PseudoSam 65, please take the time
  933.       to report it for correction.  Although any report is helpful,
  934.       correction of the problem will be easiest if you provide the
  935.       following:
  936.  
  937.          1. The version of PseudoSam 65 you are using.  Your problem may have
  938.             been fixed already.
  939.  
  940.          2. A brief description of the problem.
  941.  
  942.          3. A copy of the problem source file, preferably on a floppy disk.
  943.             (The cost of floppies is so small($.29), they will not be
  944.              returned and become the property of PseudoCode.)
  945.  
  946.             * It is NOT necessary to send a large program to demonstrate
  947.               problem.  Please try to isolate the problem area, by
  948.               writing a short sample program that demonstrates the bug.
  949.  
  950.  
  951.  
  952.  
  953.  
  954.  
  955.              Attention:BUGS             PseudoCode
  956.                                         P.O. Box 1423
  957.                                         Newport News, VA     23601
  958.  
  959.  
  960.  
  961.  
  962.  
  963.  
  964.  
  965.       Appendix E   Using PseudoSam 65 on "Compatible" Systems.
  966.  
  967.       PseudoSam 65 was written specifically for the IBM PC, but should
  968.       function normally on true "compatibles".
  969.  
  970.       Since PseudoSam 65 version 1.1.00 is a totally new program, little
  971.       compatibility data is currently available.  If you are using (or
  972.       are unable to use...) PseudoSam 65 on a non-IBM computer, please
  973.       write with your experiences.  Does PseudoSam 65 work correctly on
  974.       your system?  Are there specific problem areas?  Can they be worked
  975.       around?
  976.  
  977.       The following systems are known to run PseudoSam 65 version 1.1.00
  978.       successfully:
  979.              IBM PC
  980.              IBM XT
  981.              IBM AT
  982.              Sperry PC (all models).
  983.              JDR Microdevices PC Clones.
  984.  
  985.